> For the complete documentation index, see [llms.txt](https://developer.harness.io/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://developer.harness.io/continuous-delivery/troubleshooting-and-resources/armory/general/groovy-missingmethodexception-when-referencing-github-config-artifact-for-google-app-engine.md).

# groovy.lang.MissingMethodException when referencing github config artifact for Google App Engine

### Issue <a href="#issue" id="issue"></a>

`groovy.lang.MissingMethodException` error occurs when referencing Github config artifact for Google App Engine (GAE) deploy. The config artifacts were of instance of HashMap not an Artifact object.The following is an example of the error found within Spinnaker

```
Exception ( Create Server Group )
No signature of method: com.netflix.spinnaker.orca.pipeline.util.ArtifactUtils.getBoundArtifactForStage() is applicable for argument types: (com.netflix.spinnaker.orca.pipeline.model.Stage, null, HashMap) values: [Stage {id='', executionId=''}, ...] Possible solutions: getBoundArtifactForStage(com.netflix.spinnaker.orca.pipeline.model.Stage, java.lang.String, com.netflix.spinnaker.kork.artifacts.model.Artifact)
```

### Cause <a href="#cause" id="cause"></a>

OSS bug:<https://github.com/spinnaker/spinnaker/issues/5836>The config artifacts were returning a HashMap format instead of an artifact format, within the Orca service
