cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 

Error after creating and uploading oneagent extension

pratap
Visitor

PluginFullStatus(pluginName=custom.python.fileChecker-MINT, pluginVersion=1.1, state=INCOMPATIBLE, description=[ContextualVersionConflict(charset-normalizer 3.0.1 (c:\program files\dynatrace\oneagent\plugin_deployment\custom.python.filechecker-mint), Requirement.parse('charset-normalizer<3.0,>=2.0'), {'aiohttp'})], monitoredEntityId=0x0, stacktrace=)

1 REPLY 1

brett_schubach1
Contributor
Hi, 
 
it's trying to use your version of charset-normalizer which is above 3. You can overcome this by adding  "charset-normalizer==2.0.12" into your plugin.json as per the below example. 
"install_requires": [
      "requests>=2.6.0",
      "charset-normalizer==2.0.12"
     
    ],

Featured Posts