File tree Expand file tree Collapse file tree 1 file changed +3
-0
lines changed
twingraph/src/main/kotlin/com/cosmotech/twingraph/api Expand file tree Collapse file tree 1 file changed +3
-0
lines changed Original file line number Diff line number Diff line change @@ -118,6 +118,8 @@ class TwingraphServiceImpl(
118
118
119
119
override fun jobStatus (organizationId : String , jobId : String ): String {
120
120
checkIfGraphFunctionalityIsAvailable()
121
+ organizationService.getVerifiedOrganization(organizationId)
122
+
121
123
val twingraphImportJobInfoRequest = TwingraphImportJobInfoRequest (this , jobId, organizationId)
122
124
this .eventPublisher.publishEvent(twingraphImportJobInfoRequest)
123
125
logger.debug(" TwingraphImportEventResponse={}" , twingraphImportJobInfoRequest.response)
@@ -151,6 +153,7 @@ class TwingraphServiceImpl(
151
153
152
154
override fun getGraphMetaData (organizationId : String , graphId : String ): Map <String , String > {
153
155
checkIfGraphFunctionalityIsAvailable()
156
+ organizationService.getVerifiedOrganization(organizationId)
154
157
if (unifiedJedis.exists(graphId.toRedisMetaDataKey())) {
155
158
return unifiedJedis.hgetAll(graphId.toRedisMetaDataKey())
156
159
}
You can’t perform that action at this time.
0 commit comments