You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When deploying a cloud function with the input "available_memory", the value is not being changed. Based on the code, the input is actually "memory" instead of available_memory.
Expected behavior
The available_memory should have been increased to the value set in the YAML file based on the README document.
Observed behavior
The default available memory of 256MB remained the same.
The README document shows that the option for setting the amount of memory available is "available_memory". Since I could not get that option to work correctly, I read through the main.ts file for this and discovered that line 67 shows the following:
TL;DR
When deploying a cloud function with the input "available_memory", the value is not being changed. Based on the code, the input is actually "memory" instead of available_memory.
Expected behavior
The available_memory should have been increased to the value set in the YAML file based on the README document.
Observed behavior
The default available memory of 256MB remained the same.
Action YAML
Log output
No response
Additional information
The README document shows that the option for setting the amount of memory available is "available_memory". Since I could not get that option to work correctly, I read through the main.ts file for this and discovered that line 67 shows the following:
Since it is getting the input of 'memory', that is the value that needs to be used in the YAML file. The document needs to be updated to reflect this.
The text was updated successfully, but these errors were encountered: